home *** CD-ROM | disk | FTP | other *** search
- /* ===============
- * PedMenuApple.hh
- * ===============
- */
-
- #pragma once
-
- #include "PedMenu.hh"
-
- class PedMenuApple : public PedMenu {
- public:
- PedMenuApple();
- virtual void InstallCommand(PedCommand *inCmd, CmdCode inCode);
- virtual void DoMenuItem(short inItem);
- protected:
- virtual void AppendAppleMenuItems();
- virtual void DoAppleMenuItem(short inItem);
- protected:
- PedCommand *mAboutCmd;
- };
-